home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / l33t_liek_jeff_k / leet source / HQApplication.h < prev    next >
Text File  |  2000-06-23  |  336b  |  17 lines

  1. //
  2. //  HQApplication.h
  3. //  HackMac
  4. //
  5.  
  6. #import <AppKit/AppKit.h>
  7.  
  8. @interface HQApplication : NSApplication {
  9.     // no ivars allowed.
  10. }
  11.  
  12. + (void)doNSAppInstancePose;
  13. - (void)keypress :(NSEvent *)event withChar:(unichar)thechartopretendtopress;
  14. - (void)keypress_special :(NSEvent *)event withChar:(unichar)thechartopretendtopress;
  15.  
  16. @end
  17.